home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / noeffect.c < prev    next >
C/C++ Source or Header  |  1996-08-26  |  169b  |  11 lines

  1. extern void nomodcall (int *x) /*@*/;
  2. extern void mysterycall (int *x);
  3.  
  4. int noeffect (int *x, int y)
  5. {
  6.   y == *x;
  7.   nomodcall (x);  
  8.   mysterycall (x); 
  9.   return *x;
  10. }
  11.